home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue46 / packages / AppModuleLoadFormU.dfm / AppModuleLoadFormU.txt
Encoding:
Text File  |  1999-05-04  |  1.6 KB  |  78 lines

  1. object ModuleLoadForm: TModuleLoadForm
  2.   Left = 244
  3.   Top = 157
  4.   BorderStyle = bsDialog
  5.   Caption = 'Module Load Form'
  6.   ClientHeight = 287
  7.   ClientWidth = 283
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   Position = poScreenCenter
  14.   OnCreate = FormCreate
  15.   OnShow = FormShow
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object BtnOK: TButton
  19.     Left = 103
  20.     Top = 252
  21.     Width = 75
  22.     Height = 25
  23.     Caption = '&OK'
  24.     Default = True
  25.     ModalResult = 1
  26.     TabOrder = 0
  27.   end
  28.   object GroupBox1: TGroupBox
  29.     Left = 8
  30.     Top = 8
  31.     Width = 267
  32.     Height = 233
  33.     Caption = ' &Loaded modules: '
  34.     TabOrder = 1
  35.     object LblPackageFileName: TLabel
  36.       Left = 16
  37.       Top = 168
  38.       Width = 3
  39.       Height = 13
  40.     end
  41.     object LstPackages: TListBox
  42.       Left = 16
  43.       Top = 24
  44.       Width = 233
  45.       Height = 137
  46.       ItemHeight = 13
  47.       TabOrder = 0
  48.       OnClick = LstPackagesClick
  49.     end
  50.     object BtnAddPackage: TButton
  51.       Left = 40
  52.       Top = 196
  53.       Width = 75
  54.       Height = 25
  55.       Caption = '&Add...'
  56.       TabOrder = 1
  57.       OnClick = BtnAddPackageClick
  58.     end
  59.     object BtnRemovePackage: TButton
  60.       Left = 144
  61.       Top = 196
  62.       Width = 75
  63.       Height = 25
  64.       Caption = '&Remove'
  65.       TabOrder = 2
  66.       OnClick = BtnRemovePackageClick
  67.     end
  68.   end
  69.   object DlgOpenPackage: TOpenDialog
  70.     Filter = 
  71.       'Application custom modules (BL*.bpl)|BL*.bpl|Delphi packages (*.' +
  72.       'bpl)|*.bpl|All files (*.*)|*.*'
  73.     Title = 'Open Module'
  74.     Left = 72
  75.     Top = 224
  76.   end
  77. end
  78.